.AOWEB-hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 40px 20px;
    /* Reduced padding */
    position: relative;
    background-color: var(--dark-bg-color);
    overflow: hidden;
}

.AOWEB-hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    /* Reduced gap */
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.AOWEB-hero-left,
.AOWEB-hero-right {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.AOWEB-hero-left.fade-in-up {
    transition-delay: 0.3s;
}

.AOWEB-hero-right.fade-in-up {
    transition-delay: 0.6s;
}

.AOWEB-hero-left {
    flex: 1;
    min-width: 350px;
    padding-right: 20px;
    color: var(--text-light);
    /* Added text color */
}

.AOWEB-hero-right {
    flex: 1;
    min-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.AOWEB-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    border-radius: 20px;
    transform: rotate(-5deg);
    box-shadow: 0 15px 40px var(--shadow-dark-medium);
    z-index: 1;
}

.AOWEB-image-container {
    position: relative;
    z-index: 2;
}

.AOWEB-image-container img {
    max-width: 85%;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow-dark-heavy), 0 0 0 5px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease-out;
}

.AOWEB-image-container img:hover {
    transform: scale(1.02);
}

/* IMPORTANT: If .AOWEB-heading was specifically styled for H1, you might need to adjust this in your main CSS to ensure H2/H3 gets the same styling. */
.AOWEB-heading {
    font-size: 2.2em;
    /* This size will now apply to H2/H3 elements with this class */
    margin-bottom: 10px;
    color: var(--text-light);
    /* Added heading color */
}

.AOWEB-offer-details {
    font-size: 1.2em;
    color: var(--primary-cta);
    font-weight: 600;
    margin-bottom: 25px;
}

.AOWEB-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.AOWEB-features li {
    margin-bottom: 15px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.AOWEB-features li::before {
    content: '✔';
    color: var(--primary-cta);
    margin-right: 10px;
    font-size: 1.3em;
    font-weight: bold;
}

.AOWEB-price-section {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.AOWEB-strike-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1.2em;
}

.AOWEB-current-price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-light);
    /* Added price color */
}

.AOWEB-months-free {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--primary-cta);
}

.AOWEB-cta-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.AOWEB-button {
    display: inline-block;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.chat-btn {
    background-color: #0077B6;
    box-shadow: 0 4px 10px rgba(0, 119, 182, 0.2);
}

.chat-btn:hover {
    background-color: #005B96;
    transform: scale(1.03);
}

.enquiry-btn {
    background-color: #28a745;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.enquiry-btn:hover {
    background-color: #1e7e34;
    transform: scale(1.03);
}

.AOWEB-guarantee {
    margin-top: 18px;
    font-size: 0.95em;
    font-style: italic;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.AOWEB-guarantee::before {
    content: 'ⓘ';
    margin-right: 8px;
    color: var(--primary-cta);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .AOWEB-hero-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        /* Adjusted gap for smaller screens */
    }

    .AOWEB-hero-left,
    .AOWEB-hero-right {
        width: 100%;
        text-align: center;
        padding-right: 0;
        min-width: unset;
        /* Allow natural width */
    }

    .AOWEB-image-bg {
        width: 90%;
        /* Increased for better visual */
        height: 90%;
        /* Increased for better visual */
        left: 50%;
        transform: translateX(-50%) rotate(-5deg);
    }

    .AOWEB-image-container img {
        max-width: 95%;
        /* Adjusted for better fit */
    }

    .AOWEB-heading,
    .AOWEB-offer-details,
    .AOWEB-features,
    .AOWEB-price-section,
    .AOWEB-cta-section,
    .AOWEB-guarantee {
        text-align: center;
        /* Center align text elements */
        justify-content: center;
        /* Center items for flex containers */
    }

    .AOWEB-features li {
        justify-content: center;
        /* Center bullet points */
    }
}

@media (max-width: 768px) {
    .AOWEB-hero-section {
        padding: 30px 15px;
        /* Further reduced padding */
        min-height: auto;
        /* Allow height to adapt */
    }

    .AOWEB-hero-container {
        gap: 25px;
        /* Even smaller gap */
    }

    .AOWEB-heading {
        font-size: 1.8em;
    }

    .AOWEB-offer-details {
        font-size: 1em;
    }

    .AOWEB-current-price {
        font-size: 2em;
    }

    .AOWEB-button {
        font-size: 0.9em;
        padding: 10px 15px;
    }

    .AOWEB-hero-left,
    .AOWEB-hero-right {
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .AOWEB-hero-section {
        padding: 20px 10px;
    }

    .AOWEB-hero-container {
        gap: 20px;
    }

    .AOWEB-heading {
        font-size: 1.5em;
    }

    .AOWEB-offer-details {
        font-size: 0.9em;
    }

    .AOWEB-strike-price {
        font-size: 1em;
    }

    .AOWEB-current-price {
        font-size: 1.8em;
    }

    .AOWEB-months-free {
        font-size: 0.9em;
    }

    .AOWEB-button {
        width: 100%;
        /* Full width buttons */
        box-sizing: border-box;
        /* Include padding and border in width */
    }

    .AOWEB-cta-section {
        flex-direction: column;
        /* Stack buttons vertically */
        align-items: center;
    }
}